home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Celestin Apprentice 2
/
Apprentice-Release2.iso
/
Source Code
/
Pascal
/
Libraries
/
DBL Pascal Library
/
DebuggerTest ƒ
/
DebuggerTest_Test.p
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1993-12-17
|
331 b
|
19 lines
|
[
TEXT/PJMM
]
program DebuggerTest_Test;
uses
DebuggerTest;
var
present, active: Boolean;
kind: DebuggerKind;
signature: DebuggerSignature;
actualDelay: Longint;
begin
ShowText;
GetDebuggerInfo(present, active, kind, signature);
WriteLn(present, ' ', kind, ' ', signature);
WriteLn(ABZmonIsLoaded);
repeat
until Button;
end.